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/2